home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 398 / 398.xpi / chrome / forecastfox.jar / content / profiles / profiles.xul < prev   
Extensible Markup Language  |  2010-02-04  |  2KB  |  59 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--****************************************************************************
  4.   Copyright (c) 2008 Ensolis, LLC. All Rights Reserved.
  5.   ***************************************************************************-->
  6. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> 
  7. <?xml-stylesheet href="chrome://forecastfox/content/bindings.css" type="text/css"?>
  8. <?xml-stylesheet href="chrome://forecastfox/skin/forecastfox.css" type="text/css"?> 
  9.  
  10. <!DOCTYPE window SYSTEM "chrome://forecastfox/locale/forecastfox.dtd">
  11.  
  12. <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  13.         id="ff-profiles"
  14.         windowtype="forecastfox:profiles"
  15.         persist="screenX, screenY"
  16.         onload="profilesLoad(); sizeToContent();"
  17.         onunload="profilesUnload();"    
  18.         title="&ff.profiles.title;">
  19.         
  20.   <script type="application/x-javascript" src="chrome://forecastfox/content/utilities/helpers.js"/>
  21.   <script type="application/x-javascript" src="chrome://forecastfox/content/profiles/profiles.js"/>
  22.  
  23.   <stringbundleset>
  24.     <stringbundle id="ff-bundle-profiles" src="chrome://forecastfox/locale/forecastfox.properties"/>
  25.   </stringbundleset>
  26.  
  27.   <keyset id="ff-keys">
  28.     <key keycode="VK_ESCAPE" oncommand="window.close();"/>
  29.   </keyset>
  30.  
  31.   <ffheader id="ff-profiles-header" title=""/>
  32.  
  33.   <hbox id="ff-profiles-content" class="ff-content">
  34.     <grid>
  35.       <columns>
  36.         <column/>
  37.         <column flex="1"/>
  38.       </columns>
  39.       <rows>
  40.         <row align="center" pack="end">
  41.           <label value="&ff.profiles.id;" control="ff-text-id"/>
  42.           <textbox id="ff-text-id" flex="1" readonly="true"/>
  43.         </row>      
  44.         <row align="center" pack="end">
  45.           <label value="&ff.profiles.name;" control="ff-text-name"/>
  46.           <textbox id="ff-text-name" size="45" flex="1" onkeypress="if (event.keyCode == event.DOM_VK_RETURN) gProfiles.accept();" />
  47.         </row>
  48.       </rows>
  49.     </grid>
  50.   </hbox>
  51.  
  52.   <hbox id="ff-profiles-footer" class="ff-footer" align="center">
  53.     <label value="&ff.providedby;"/>
  54.     <fflink label="&acw.site;" tooltiptext="&acw.tooltip;" href="&acw.main;" partner="true" from="dialog"/>
  55.     <spacer class="ff-btnspacer" flex="1"/>
  56.     <button label="&ff.ok;" default="true" class="ff-button" oncommand="gProfiles.accept();"/>
  57.     <button label="&ff.cancel;" class="ff-button" oncommand="window.close();"/>
  58.   </hbox>  
  59. </window>